home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / dsp / 56000tar.z / 56000tar / 56000 / matrix / matmul3.hlp < prev   
Text File  |  1991-11-26  |  866b  |  18 lines

  1.          Name: MATMUL3 
  2.          Type: Assembler Program
  3.       Version: 1.0
  4.   Last Change:  4-Feb-87
  5.                                                             
  6.   Description: General Matrix Multiply-Accumulate Routine
  7.  
  8.  This program performs the matrix operation C=AB+Q, where A, B
  9.  and Q are two dimensional matrices of arbitrary dimension.
  10.  The only restriction is that the inner dimension of the arrays
  11.  must be greater than 1.  MATMUL3 multiplies an array of dimension
  12.  [WxX] in X memory by an array of dimension [YxZ] in Y memory, adds
  13.  an array of dimension [WxZ] in Y memory and stores the resulting
  14.  array of dimension [WxZ] in Y memory.  The array dimensions X and
  15.  Y must be equal (arrays must be conformable) and must be greater
  16.  than 1.  The Q array must have dimensions of [WxZ].  Data storage
  17.  format is row major storage (second subscript varies).
  18.